home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / spiele / think / chinachallenge3 / c++ / makefile < prev    next >
Makefile  |  1995-11-26  |  268b  |  18 lines

  1.  
  2. CC        = gcc
  3.  
  4. CFLAGS        = -O2 -msmall-code -fbaserel -fno-builtin
  5.  
  6. CXXFLAGS    = -V2.3.3 $(CFLAGS)
  7.  
  8. LFLAGS        = -noixemul -fbaserel
  9.  
  10. LDLIBS        = -lamiga -lmath
  11.  
  12. OBJS        = cc3.o stubs.o ../c/img.o ../c/alias.o
  13.  
  14. # the game :)
  15.  
  16. CC3:        $(OBJS)
  17.         $(CC) $(LFLAGS) -o $@ $(OBJS) $(LDLIBS)
  18.